home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / comm / fido / fnews3.lzh / fido328.nws < prev    next >
Text File  |  1986-07-20  |  31KB  |  705 lines

  1.      Volume 3, Number 28                                  21 July 1986
  2.      +---------------------------------------------------------------+
  3.      |                                                  _            |
  4.      |                                                 /  \          |
  5.      |    - FidoNews -                                /|oo \         |
  6.      |                                               (_|  /_)        |
  7.      |  Fido and FidoNet                              _`@/_ \    _   |
  8.      |    Users  Group                               |     | \   \\  |
  9.      |     Newsletter                                | (*) |  \   )) |
  10.      |                                  ______       |__U__| /  \//  |
  11.      |                                 / FIDO \       _//|| _\   /   |
  12.      | (C) Copyright 1986 by IFNA     (________)     (_/(_|(____/    |
  13.      |                                                     (jm)      |
  14.      +---------------------------------------------------------------+
  15.      Editor in Chief:                                   Thom Henderson
  16.      Chief Procrastinator Emeritus:                       Tom Jennings
  17.  
  18.      FidoNews is the official newsletter of the International  FidoNet
  19.      Association,  and is published weekly by SEAdog Leader, node 1/1.
  20.      You  are  encouraged  to  submit  articles  for  publication   in
  21.      FidoNews.  Article submission standards are contained in the file
  22.      FNEWSART.DOC,  available from  node  1/1.
  23.  
  24.      The   contents  of  the  articles  contained  here  are  not  our
  25.      responsibility,   nor  do  we  necessarily   agree   with   them.
  26.      Everything here is subject to debate.
  27.  
  28.  
  29.  
  30.  
  31.                              Table of Contents
  32.  
  33.      1. ARTICLES
  34.      2. COLUMNS
  35.         Speeding Up Batch Files
  36.         Computer Industry Spotlight
  37.         Job Market Research Part III
  38.      3. WANTED
  39.         Wanted:  IBM PC programs for publication!
  40.         Any large Fidos out there?
  41.      4. FOR SALE
  42.         Entertainment Software for your PC!
  43.         Public Domain Software Library Sale!!
  44.      5. NOTICES
  45.         The Interrupt Stack
  46.         CARTOON: Generic George, by Bruce White
  47.         FidoMail Diplomacy - Game F2
  48.         SPLTNEWS - A New Fido Sysop Utility
  49.  
  50.  
  51.  
  52.  
  53.      Fidonews                     Page 2                   21 Jul 1986
  54.  
  55.  
  56.      =================================================================
  57.                                  ARTICLES
  58.      =================================================================
  59.  
  60.      Don Daniels                NODEFIX.EXE
  61.      SYSOP, FIDO 107/211          Ver 1.00
  62.  
  63.  
  64.          When using ECHOMAIL, it is necessary to run TOSSMAIL against
  65.      the incoming mail in your mail area in order to move ECHOMAIL
  66.      messages to their appropriate areas.  TOSSMAIL 1.30 searches for
  67.      mail which contains your Net/Node number as indicated in
  68.      MAIL.SYS.  This presents no problem if you are a standard node.
  69.      But, if you are a Hub and/or a Host, it is possible that senders
  70.      have used one or more different (alias) Net/Node addresses than
  71.      that given as the primary in MAIL.SYS.  Such messages will NOT
  72.      be relocated by TOSSMAIL 1.30.
  73.  
  74.          NODEFIX addresses this situation by changing the Net/Node
  75.      numbers of appropriate messages to a common value as specified
  76.      by the user.
  77.  
  78.  
  79.          NODEFIX.ARC, which includes NODEFIX.EXE and accompanying
  80.      documentation, is available for downloading from:
  81.  
  82.      D2-FIDO (107/210) 516-682-8525 evenings or weekends at 2400 bps, or
  83.      DANIELS-FIDO (107/211) 516-367-9626 most any time or day at 1200-300
  84.  
  85.          It is distributed as shareware.
  86.  
  87.      -----------------------------------------------------------------
  88.  
  89.      Fidonews                     Page 3                   21 Jul 1986
  90.  
  91.  
  92.      =================================================================
  93.                                   COLUMNS
  94.      =================================================================
  95.  
  96.                           SPEEDING UP BATCH FILES
  97.  
  98.                                 Bob Unferth
  99.                                 Wilmette, IL
  100.  
  101.      Batch files make life a lot easier, but they are very slow.  Even
  102.      when using batch files in RAM  disks,  execution  time  is  quite
  103.      noticeable.  It  reminds me of the time when a batch file meant a
  104.      batch of cards.  The techniques described here  reduce  the  time
  105.      required  to  execute  batch  file  by  as  much  as  an order of
  106.      magnitude.
  107.  
  108.      Execution time is closely related to the number of  lines  rather
  109.      than the number of characters.  To save time put as many commands
  110.      on one line as possible.  Some ways to do this:
  111.  
  112.      1. Instead of using a lot of lines for remarks, put what you have
  113.         to say in a file  and  issue  the  batch  command  TYPE  FILE.
  114.         TYPing  a file takes less than 30% as long as echoing the same
  115.         information from a batch file.
  116.  
  117.      2. Instead of using a lot of lines to issue commands, put all the
  118.         commands in a FOR subcommand.  For instance, your autoexec.bat
  119.         file might start out:
  120.  
  121.             fastdisk
  122.             parint
  123.             scrnsave
  124.             spool 7
  125.             sk
  126.             c:
  127.  
  128.         Instead, just say:
  129.  
  130.             for %%f in (fastdisk parint scrnsave spool:7 sk c:) do %%f
  131.  
  132.         This reduces six lines to one.  In DOS 2.1,  but not  in  3.0,
  133.         you  can eliminate spaces and slightly decrease execution time
  134.         like this:
  135.  
  136.             for %%fin(fastdisk parint scrnsave spool:7 sk c:)do%%f
  137.  
  138.         Note the colon between spool and 7.  You can't have any spaces
  139.         within the parentheses except to denote the beginning of a new
  140.         command.
  141.  
  142.      3. When  copying files use the FOR subcommand and wild cards like
  143.         this:
  144.  
  145.             for %%fin(print v sp)docopy a:%%f???.*
  146.  
  147.         The FOR subcommand does not  support  wild  cards  within  the
  148.      Fidonews                     Page 4                   21 Jul 1986
  149.  
  150.  
  151.         parentheses.
  152.  
  153.         How much time the FOR subcommand will save, if any, depends on
  154.         how  the  disk  buffers are used while the subcommand is being
  155.         executed.  DOS remembers the  entire  subcommand.  It  doesn't
  156.         have  to  go back to disk to read more of the subcommand as it
  157.         goes along.  But DOS doesn't  remember  the  contents  of  the
  158.         batch  file unless it is held in disk buffers.  Whether or not
  159.         the disk buffers keep the contents of the batch  file  depends
  160.         on what you're doing between batch commands.
  161.  
  162.      4. The  IF  subcommand  supports conditional commands and the FOR
  163.         subcommand.  For instance,  you might want to see  if  a  file
  164.         exists  and,  if it does,  to run several programs and then to
  165.         return to the menu; or, if it doesn't to display a message and
  166.         return to the menu.  A batch file for  this  task  might  look
  167.         like this:
  168.  
  169.             If exist myufile goto programs
  170.             echo File does not exist.  Try again.
  171.             d:menu
  172.             :programs
  173.             myprog.ram
  174.             second.prg
  175.             third
  176.             d:menu
  177.  
  178.         But it will run faster like this:
  179.  
  180.             If exist myfile for %%fin(myprog.ram second.prg d:menu)do%%f
  181.             for %%fin(echo d:menu)do%%f File does not exist.  Try again,
  182.  
  183.      5. When a command processor or another  batch  file  is  invoked,
  184.         batch processing for the first batch is terminated.  You don't
  185.         need  to exit the batch file.  For example,  in the batch file
  186.         fragment below,  the command GOTO  GETOUT  (and  probably  the
  187.         label :GETOUT) is unnecessary and will increase execution time
  188.         in some cases:
  189.  
  190.                ..
  191.             command c:
  192.             goto to getout
  193.                ..
  194.                ..
  195.             :getout.
  196.  
  197.      6. A  fast  way  to  get  out of the middle of a batch file is to
  198.         issue a command for another batch  file,  say  a  file  called
  199.         exit.  EXIT  can contain only the command REM or just a dot or
  200.         better yet nothing.  A file that contains nothing doesn't take
  201.         up any disk space.  You can create such a  file  with  another
  202.         batch file, say autoexec.bat, by inserting this command:
  203.  
  204.             for %%fin(echo rem)do%%f >d:exit.bat
  205.  
  206.         The  rem  part  of the command can be any command that doesn't
  207.      Fidonews                     Page 5                   21 Jul 1986
  208.  
  209.  
  210.         look for parameters on the command line, e.g.  cls or pause or
  211.         sk.
  212.  
  213.      7. Of course,  running batch files from a RAM disk is a big help.
  214.         It's sometimes worth transferring control to a batch file that
  215.         has been copied onto your RAM  disk.  The  time  required  for
  216.         handling  the  batch  operations  in a RAM disk is less than a
  217.         third of that required for a floppy.
  218.  
  219.      8. Putting an end-of-file marker (ASCII 26 or Control Z)  on  the
  220.         same line and immediately after the last command, will prevent
  221.         annoying multiple prompts at the end of batch processing.
  222.  
  223.      -----------------------------------------------------------------
  224.  
  225.      Fidonews                     Page 6                   21 Jul 1986
  226.  
  227.  
  228.      William/Eunhee Hunter
  229.      Fido 109/626
  230.  
  231.                       Computer Industry Spotlight on:
  232.  
  233.      TELEX COMPUTER PRODUCTS, INC. -- Telex Computer Products, Inc. is
  234.      a leading electronics and communications concern,  which designs,
  235.      manufactures,   markets,   and   services   computer   peripheral
  236.      equipment.  Operations are managed from offices in more than  175
  237.      locations  throughout  the  U.S.,  Canada,  and  major  worldwide
  238.      cities.  Job opportunities  are  regularly  available  for  field
  239.      service   technicians   with   training   and  previous  hands-on
  240.      experience  maintaining  magnetic  tape  drives,   disk   drives,
  241.      printers,   and  a  variety  of  terminal  equipment.   There  is
  242.      excellent opportunity  for  advancement  into  management.  Field
  243.      service offers management training courses to those employees who
  244.      express  a  desire  to move into managerial positions and have an
  245.      aptitude  for  management.   Courses  include  formal   seminars,
  246.      structural   on-the-job   situations,   and  computer  associated
  247.      instruction.
  248.  
  249.           Contact:  Nina Newberry, Personnel Representative/Recruiter,
  250.      Telex Computer Products, Inc., 6422 E. 41st St., Tulsa, OK
  251.      74135.
  252.  
  253.      -----------------------------------------------------------------
  254.  
  255.      Fidonews                     Page 7                   21 Jul 1986
  256.  
  257.  
  258.      William/Eunhee Hunter
  259.      Fido 109/626
  260.  
  261.                 THE NEXT STEP -- RESEARCH SELECTED COMPANIES
  262.  
  263.  
  264.           When this initial phase of your research effort is finished,
  265.      you'll find yourself already well ahead of the game.  Unlike most
  266.      of your competitors in the job market,  you will have achieved  a
  267.      clear   idea  where  you're  going  and  what  you're  trying  to
  268.      accomplish.  You have established  for  yourself  a  well-defined
  269.      area  --  a  specific  industry  (or  industries)  -- on which to
  270.      concentrate your search.  (You may of course,  wish to narrow the
  271.      focus  even  more,  to  a  specific  geographic area.) And in the
  272.      process, you've learned a good deal about the industry and are in
  273.      a position to begin researching specific employers and  to  start
  274.      making   all-important  personal  contacts  with  people  in  the
  275.      industry.  Furthermore,  you're now able to talk knowledgeably to
  276.      industry  officials  about a subject that interests them greatly:
  277.      their industry.  And your knowledge will  progressively  increase
  278.      and become more detailed as you continue your search.
  279.  
  280.           The  second  and  final  phase  of  your research focuses on
  281.      SPECIFIC COMPANIES within your selected industry.  Your immediate
  282.      task here is to compile a list of employers -- as lengthy a  list
  283.      as  possible  --  which  appear to have suitable opportunities in
  284.      your field.  After you have compiled this list you will  then  do
  285.      some  additional  work  to determine which department within each
  286.      listed  company  hires  people  in  your  field   and   who   the
  287.      department's  hiring  official  is.  Most  major  industries have
  288.      industry directories -- often published by the industry trade  or
  289.      professional  association  --  which provide company listings and
  290.      officer  names   and   titles.   Trade   journals   and   company
  291.      stockholder's  reports  may also help.  Or you may wish to simply
  292.      call the personnel or public relations office  of  a  company  to
  293.      obtain the needed information.
  294.  
  295.           TRADE JOURNALS AND INDUSTRY PERIODICALS.  These publications
  296.      often  contain  news about current recruitment needs and plans of
  297.      major companies;  in addition,  nearly  all  of  them  include  a
  298.      "Positions Available" classified section.
  299.  
  300.           CORPORATE  DIRECTORIES.  Although it is not recommended that
  301.      such  directories  be  used  for   indiscriminate   "scatter-gun"
  302.      mailings, corporate directories can be very useful in helping you
  303.      to  identify  firms  which may have current opportunities in your
  304.      field.  But before you mail your cover letter  and  resume  to  a
  305.      listed  company,  make  an effort to determine its current hiring
  306.      needs (through additional library research or by  contacting  the
  307.      firm  directly).  Then slant your cover letter in such a way that
  308.      any relevant interests or accomplishments  are  highlighted.  The
  309.      best  corporate  directories  are:  THE COLLEGE PLACEMENT COUNCIL
  310.      ANNUAL, the S & P REGISTER, and DUN'S MILLION DOLLAR DIRECTORY.
  311.  
  312.           SMALL BUSINESS  AND  ASSOCIATION  REFERENCE  MATERIALS.  Two
  313.      important  areas  often  overlooked  by  job  seekers  are  small
  314.      Fidonews                     Page 8                   21 Jul 1986
  315.  
  316.  
  317.      businesses  and   trade/professional   associations.   A   "small
  318.      business,"   incidentally,   need   not  be  particularly  small.
  319.      Companies with sales under $25 million are considered to fit  the
  320.      usual  definition.  A  good  starting  point in researching these
  321.      firms is the INC.  500 DIRECTORY (published  by  INC.  Magazine),
  322.      which  lists and profiles the 500 fastest-growing small companies
  323.      nationwide.  Another very good source is  so  obvious  you  might
  324.      overlook  it  --  the  yellow-pages  telephone  directories (many
  325.      libraries maintain yellow-pages directories for  all  major  U.S.
  326.      cities).  As  for  associations,  your  best  source  of  company
  327.      information is the ENCYCLOPEDIA OF ASSOCIATIONS,  also  available
  328.      at most libraries.
  329.  
  330.           MISCELLANEOUS  INFORMATION  SOURCES.  In  the course of your
  331.      research,  you'll uncover many additional information sources  on
  332.      your  own.  Here  are  a  few  additional  ones  that  have  wide
  333.      applicability.  O'DWYERS DIRECTORY  OF  PUBLIC  RELATIONS  FIRMS;
  334.      THOMAS' REGISTER OF AMERICAN CORPORATIONS;  EVERYBODY'S BUSINESS,
  335.      THE IRREVERENT GUIDE  TO  CORPORATE  AMERICA.  (The  last  source
  336.      mentioned, EVERYBODY'S BUSINESS, contains major company histories
  337.      and  profiles  that  are  especially  useful in preparing for job
  338.      interviews.)
  339.  
  340.           The next and last article will  present  THE  ALL  IMPORTANT
  341.      HUMAN FACTOR.
  342.  
  343.           Distributed via FidoNet BBS by NOVA_WEG Fido 109/626, W.E.G.
  344.      Systems,  P.O.  Box 5072,  Springfield,  VA 22150.  Permission is
  345.      hereby given to  reprint  this  article  providing  the  contents
  346.      remain unchanged.
  347.  
  348.      -----------------------------------------------------------------
  349.  
  350.      Fidonews                     Page 9                   21 Jul 1986
  351.  
  352.  
  353.      =================================================================
  354.                                   WANTED
  355.      =================================================================
  356.  
  357.      Daniel Tobias, Soft Fido, 19/216: (318) 636-4402
  358.  
  359.                  WANTED:  IBM PC PROGRAMS FOR PUBLICATION!
  360.  
  361.      SOFTDISK, INC., the already-successful publisher of magazines on
  362.      diskette for Apple II and Commodore 64 computers, will produce a
  363.      monthly disk-based publication for the IBM PC.
  364.      The first issue of this publication, to be named BIG*BLUE DISK,
  365.      and which will be contained entirely on a floppy disk, will be
  366.      shipped to thousands of retail outlets in September, including B.
  367.      Dalton Booksellers and Waldenbooks.
  368.  
  369.                             - - OFF-BROADWAY - -
  370.      If you have written a program for the IBM PC, please consider
  371.      publishing it on BIG*BLUE DISK; it's your chance to make some
  372.      money, and get your name in print.  Programs of all categories
  373.      are being accepted: utilities, educational, recreational, home,
  374.      business, graphics, music, etc.
  375.  
  376.                             - - YOUR REWARD - -
  377.      We will select the best programs submitted, and publish them on
  378.      issues of BIG*BLUE DISK.  If we choose to publish your program,
  379.      we will pay you a minimum of $50, and possibly more-- as much as
  380.      $500, depending on the nature and quality of the program.  This
  381.      money is for the privilege of publishing your program.  You
  382.      retain full rights to it.
  383.  
  384.                           - - HOW TO SUBMIT IT - -
  385.      Submissions can be sent by FIDONET to node 19/216, or uploaded
  386.      directly to our BBS at (318) 636-4402.
  387.      Alternatively, you can send them on a floppy disk to:
  388.      BIG*BLUE DISK, PO BOX 30008, SHREVEPORT, LA 71130-0008.
  389.      You will receive a new blank disk in return mail, to replace the
  390.      disk you sent.
  391.  
  392.      BIG*BLUE DISK is a widely-distributed, carefully-prepared
  393.      publication, so make sure your programs are well-tested and
  394.      debugged, and include adequate instructions within the program.
  395.      Include a note (on paper, in a text file, or in a message to the
  396.      sysop of our BBS) describing what your program does, what files
  397.      are necessary to run it, and what system configuration (hardware
  398.      and software) is required.
  399.  
  400.                            - - NOTE TO SYSOPS - -
  401.      There is a finder's fee of 10% for you if you submit a program on
  402.      behalf of one of your users and it is published.  Thus, you may
  403.      wish to publicize BIG*BLUE DISK and our search for programs on
  404.      your board.
  405.  
  406.      -----------------------------------------------------------------
  407.  
  408.      Fidonews                     Page 10                  21 Jul 1986
  409.  
  410.  
  411.      Justin Norman, System Operator
  412.      Northwest Super Fido (#105/2)
  413.  
  414.  
  415.  
  416.  
  417.                    Are there any large Fidos out there?
  418.  
  419.          I recently started to look into a larger and more powerful MS
  420.      or PC-DOS based machine to run my Fido on, and also run some
  421.      other applications.  I have noticed that the IBM PC/AT or clones
  422.      are the most leader.  So what I want you to do is if you own a
  423.      computer system or systems that meat or exceed the following
  424.      specs to please send me more information.
  425.  
  426.       System must have at least:
  427.          A 6Mhz processor
  428.          512Kb of Random Access Memory
  429.          CRT controller of some type
  430.          40 MegaBytes total of hard disk storage
  431.          One floppy drive of some type
  432.  
  433.       Send me this information if your system qualifies:
  434.          Your name
  435.          Computer Name
  436.          Name of all the parts
  437.          How you have everything hooked up (configuration)
  438.          Any extra devices hooked up (printers, graphics cards, etc.)
  439.          Total cost for everything
  440.          Where you purchased or ordered the items
  441.          Do you like the machine (keyboard, monitor, etc.)
  442.          Have you had any problems with the machine?
  443.          If so, what are/were they?
  444.  
  445.          Thanks alot, your help is appriciated!!  If your system does
  446.      qualify, please send the information requested to me via one of
  447.      the following resources:
  448.  
  449.       Voice:    Justin Norman, 503/692-5976 or 503/692-3511
  450.       Date:     Northwest Super Fido, 300/1200/2400 baud,
  451.                 24 hrs, 365 days a year, 503/692-6243
  452.       FidoNet:  Fido node 2 in net 105  (#105/2)
  453.       US Mail:  P.O. Box 1085
  454.                 Tualatin, Oregon 97062
  455.  
  456.  
  457.  
  458.  
  459.  
  460.      -----------------------------------------------------------------
  461.  
  462.      Fidonews                     Page 11                  21 Jul 1986
  463.  
  464.  
  465.      =================================================================
  466.                                  FOR SALE
  467.      =================================================================
  468.  
  469.                   ENTERTAINMENT SOFTWARE FOR YOUR PC!
  470.  
  471.                           SUPERDOTS!  KALAH!
  472.  
  473.      Professional quality games include PASCAL source!  From  the
  474.      author of KALAH Version 1.6,  SuperDots,  a variation of the
  475.      popular pencil/paper DOTS game,  has MAGIC  and  HIDDEN  DOT
  476.      options.  KALAH  1.7  is  an African strategy game requiring
  477.      skill to manipulate pegs around a playing board.  Both games
  478.      use the ANSI Escape sequences  provided  with  the  ANSI.SYS
  479.      device driver for the IBM-PC,  or built into the firmware on
  480.      the DEC  Rainbow.  Only  $19.95  each  or  $39.95  for  both
  481.      exciting  games!  Please  specify  version  and disk format.
  482.      These games have been written in standard  TURBO-PASCAL  and
  483.      run on the IBM-PC,  DEC Rainbow 100 (MSDOS and CPM), CPM/80,
  484.      CPM/86,  and PDP-11.  Other disk formats are available,  but
  485.      minor customization may be required.
  486.  
  487.                              BSS Software
  488.                              P.O. Box 3827
  489.                          Cherry Hill, NJ 08034
  490.  
  491.  
  492.      For every order placed,  a donation will be made to the Fido
  493.      coordinators!  Also, if you have a previous version of KALAH
  494.      and send me a donation, a portion of that donation will also
  495.      be sent to the coordinators.  When you place  an  order,  BE
  496.      CERTAIN  TO  MENTION  WHERE  YOU  SAW  THE  AD since it also
  497.      appears in PC Magazine and Digital Review.
  498.  
  499.      Questions and comments can be sent to:
  500.  
  501.                       Brian Sietz at  Fido 107/17
  502.                       (609) 429-6630    300/1200/2400 baud
  503.  
  504.      -----------------------------------------------------------------
  505.  
  506.      Fidonews                     Page 12                  21 Jul 1986
  507.  
  508.  
  509.               Now available from Micro Consulting Associates!!
  510.  
  511.      Public Domain collection - 550+ "ARC"  archives  -  20+  megs  of
  512.      software  and  other  goodies,  and that's "archived" size!  When
  513.      unpacked,  you get approximately 28 megabytes worth of all  kinds
  514.      of  software,  from text editors to games to unprotection schemes
  515.      to communications programs, compilers, interpreters, etc...  Over
  516.      55 DS/DD diskettes!!
  517.  
  518.      This collection is the result of more than 15 months of intensive
  519.      downloads  from  just  about 150 or more BBS's and other sources,
  520.      all of which have been examined,  indexed and archived  for  your
  521.      convenience.  Starting  a  Bulletin Board System?  Want to add on
  522.      to your software base without spending thousands of dollars? This
  523.      is the answer!!!
  524.  
  525.      To order the library,  send  $100  (personal  or  company  check,
  526.      postal money order or company purchase order) to:
  527.  
  528.                     Micro Consulting Associates, Fido 103/511
  529.                     Post Office Box 4296
  530.                     200-1/2 E. Balboa Boulevard
  531.                     Balboa, Ca. 92661-4296
  532.  
  533.      Please allow 3 weeks for delivery of your order.
  534.  
  535.      Note:  No  profit  is  made  from  the  sale of the Public Domain
  536.      software in this collection.  The price is  applied  entirely  to
  537.      the  cost  of  downloading  the  software  over  the phone lines,
  538.      running a  BBS  to  receive  file  submissions,  and  inspecting,
  539.      cataloguing, archiving and maintaining the files.  Obtaining this
  540.      software yourself through the use of  a  computer  with  a  modem
  541.      using  commercial phone access would cost you much more than what
  542.      we charge for the service...
  543.  
  544.      Please specify what type of format you would like the disks to be
  545.      prepared on.  The following choices are available:
  546.            - IBM PC-DOS Backup utility
  547.            - Zenith MS-DOS 2.11 Backup Utility
  548.            - DSBackup
  549.            - Fastback
  550.            - ACS INTRCPT 720k format
  551.            - Plain  ol' files (add $50)
  552.  
  553.      Add $30 if you want  the  library  on  1.2  meg  AT  disks  (more
  554.      expensive  disks).  There  are  no  shipping or handling charges.
  555.      California residents add 6% tax.
  556.  
  557.      For each sale, $10 will go to the FidoNet Administrators.
  558.  
  559.      -----------------------------------------------------------------
  560.  
  561.      Fidonews                     Page 13                  21 Jul 1986
  562.  
  563.  
  564.      =================================================================
  565.                                   NOTICES
  566.      =================================================================
  567.  
  568.                           The Interrupt Stack
  569.  
  570.  
  571.      14 Aug 1986
  572.         Start of the International FidoNet Conference, Colorado
  573.         Springs, Colorado.  Contact George Wing at node 1/10 for
  574.         details.  Get your reservations in NOW!  We'll see you there!
  575.  
  576.      24 Aug 1989
  577.         Voyager 2 passes Neptune.
  578.  
  579.  
  580.      If you have something which you would like to see on this
  581.      calendar, please send a message to FidoNet node 1/1.
  582.  
  583.      -----------------------------------------------------------------
  584.  
  585.      Generic George              by Bruce White, 109/612
  586.      +-------------------------------------------------+
  587.      |    LOOK AT THIS PHONE BILL!!!  We're being      |
  588.      |  / charged for more than 3,000 message units!!  |
  589.      | /  This is impossible, right?  Right, George??  |
  590.      |/                                                |
  591.      |             Oh.  Well ... ah ... um ....        |
  592.      |             You see, anything's possible____\__ |
  593.      |             with autodialing.  \        |_|  \  |
  594.      |                                 \ _____      |\ |
  595.      |                                  |  _  |     |  |
  596.      |                          ______  | |_| |     |  |
  597.      |                       __(______)_|_____|___  |  |
  598.      |                       ||-----------------||  |  |
  599.      |                ______ ||                 ||  |  |
  600.      |                \ {} / ||                 ||  |  |
  601.      |(c) 1986 bw      \__/  ||-----------------||__|__|
  602.      +-------------------------------------------------+
  603.  
  604.      -----------------------------------------------------------------
  605.  
  606.      Robert Eskridge
  607.      Fido 124/109
  608.  
  609.      Diplomacy Game F1 has been running for almost six bloody weeks
  610.      on The Diplomat, which puts the game at the end of 1902.  It's
  611.      been quite a fracas.  Russia, Germany and Turkey have almost
  612.      eliminated Austria with a brutal combination of blitzing armies,
  613.      propaganda, espionage, and deceit.  It has been a good time!
  614.  
  615.      For those that missed out on joining Game F1, we are now taking
  616.      applications for players in the next game, F2.  Turns will be due
  617.      weekly and diplomatic messages are your responsibility.  For more
  618.      information contact Bryny at 124/109.
  619.  
  620.      Fidonews                     Page 14                  21 Jul 1986
  621.  
  622.  
  623.                             - THE DIPLOMAT -
  624.  
  625.                               Fido 124/109
  626.                              (214) 242-9399
  627.                                2400 baud
  628.  
  629.  
  630.      -----------------------------------------------------------------
  631.  
  632.      Hallo allemaal, er zijn nogal wat problemen met de mogelijkheden
  633.      van de commodore computers in Fido.
  634.  
  635.      1e. Uploaden. Dit gaat niet met de Teletron 1200 en de Multimodem
  636.          64.
  637.  
  638.      2e. Downloaden. Dit gaat ook niet met deze modems.  Een aantal
  639.          leden heeft me al meerdere malen gevraagt wat we (ze) daaraan
  640.          kunnen doen.
  641.  
  642.      Heeft een van jullie een oplossing, of is er misschien dan toch
  643.      een modem die deze problemen niet heeft.
  644.  
  645.      Ik zelf zit met 2 nieuwe programma's die ik graag in mijn node
  646.      zou willen hebben. Bijde van commodore gebruikers.De programma's
  647.      waren gemaakt voor het Micro-Master toernooi en ik mag ze als
  648.      Publik-Domain gebruiken.  Dus als iemand er iets op weet, laat
  649.      het mij dan weten.
  650.  
  651.      Vriendelijke groeten Loek Jansen  Sysop Rozenburg 1.
  652.  
  653.      -----------------------------------------------------------------
  654.  
  655.      Jim Fullton
  656.      158/104
  657.  
  658.      SPLTNEWS - A New Fido Sysop Utility
  659.  
  660.      SPLTNEWS  is  a  program designed to allow  Fido  BBS  users
  661.      easier  access  to the information contained in  the  weekly
  662.      FidoNews "publication".  When used in conjunction with SEND-
  663.      MAIL (written by Jeff Rush at the Rising Star Fido  124/15),
  664.      it  allows  each  page of the the FidoNews  document  to  be
  665.      entered  as  a message into a specific  message  area.   The
  666.      users  may  then "browse" through the news by entering  that
  667.      message area and reading the messages.  A particular article
  668.      in  the  table of contents may be accessed  by entering  its
  669.      page  number as a  message  number.  Casual readers may read
  670.      each page by  just pressing return at the message prompt.
  671.  
  672.      Sample command line syntax:
  673.  
  674.      SPLTNEWS FIDO325.NWS
  675.  
  676.      This  example will create  PAGE.001,  PAGE.002, PAGE.003...
  677.      in  the current  directory  -  one for  each  page  in  the
  678.      original document.
  679.      Fidonews                     Page 15                  21 Jul 1986
  680.  
  681.  
  682.      The format of a PAGE.nnn file is thus:
  683.  
  684.      MSG:  0  DATE: 30 JUNE 1986    -- date from 1st line
  685.      FROM: FidoNews Splitter
  686.      TO: Everyone
  687.      SUB: FidoNews Page n           -- the actual page number
  688.      *
  689.      *                              -- the actual text
  690.      *                              -- from page n
  691.      *
  692.      END
  693.  
  694.      This is the format required by SENDMAIL.
  695.  
  696.      Although this program was written for use with FidoNews,  it
  697.      may also be used to split other types of files.  The program
  698.      and C source code are available on Fido 158/104.  The author
  699.      will  respond  to  comments  and  suggestions  by   FidoMail.
  700.      Please address any correspondence to Jim Fullton.
  701.  
  702.  
  703.      -----------------------------------------------------------------
  704.  
  705.